test(query-devtools/PiPContext): assert exact spy arguments instead of 'objectContaining'/'stringContaining'#11052
Merged
sukvvon merged 1 commit intoJul 12, 2026
Conversation
|
View your CI Pipeline Execution ↗ for commit b460ff5
☁️ Nx Cloud last updated this comment at |
Contributor
📝 WalkthroughWalkthroughPiP context tests now assert the exact auto-open popup failure message and require ChangesPiP test validation
Estimated code review effort: 1 (Trivial) | ~3 minutes Possibly related PRs
Suggested labels: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
Contributor
🚀 Changeset Version PreviewNo changeset entries found. Merging this PR will not cause a version bump for any packages. |
Contributor
size-limit report 📦
|
…f 'objectContaining'/'stringContaining'
b460ff5 to
a5852c8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 Changes
Two assertions in
PiPContext.test.tsxmatched spy arguments partially, so they skipped fields the source actually passes. Both are now pinned to the exact value.should observe the parent "#_goober" style...—observewas checked withexpect.objectContaining({ childList: true, subtree: true }), which ignores extra keys and silently skippedcharacterDataOldValue. Now asserts the full options object:should reset "pip_open"/"open" and log when "window.open" returns null on auto-open—console.errorwas checked withexpect.stringContaining('Failed to open popup'), matching only a prefix. The source logs a fixedPipOpenErrormessage, so the assertion now pins the full string.✅ Checklist
🚀 Release Impact
Summary by CodeRabbit
console.errormessage when popup opening returnsnull.childList,subtree, andcharacterDataOldValue: true.